home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SRCPOOL.PAK / SRCPOOL.CPP next >
C/C++ Source or Header  |  1997-05-06  |  371b  |  18 lines

  1. // Borland C++ - (C) Copyright 1991, 1992 by Borland International
  2. //
  3. //  IDE SourcePool Example
  4.  
  5. #include <windows.h>
  6.  
  7. #ifdef __FLAT__
  8. static char szName[] = "SrcPool32";
  9. #else
  10. static char szName[] = "SrcPool16";
  11. #endif
  12.  
  13. int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
  14. {
  15.      return( ::MessageBox( 0, "IDE SourcePool example", szName, MB_OK ) );
  16. }
  17.  
  18.